BatchFilePullTransaction
This API is used to process the AFT validated batch transactions. The validation will be done by ValidateBatchFilePullTransaction. After validation, the validated transaction will be processed by BatchFilePullTransaction.
Method: POST
Endpoint:
http://localhost:4041/rpc/VisaDirectService/BatchFilePullTransaction
Request
Payload Parameters
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| fileId | String | Yes | It is the unique ID that is generated while a file is uploaded. |
| processTransaction | Boolean | Yes | This field should have true or false. If true, the batch file will be processed, and if false, the batch file will be canceled. |
Sample Request
{
"fileId": "92001",
"processTransaction": true
}
Sample Response
{
"message": "4 of 5 Batch Transactions Initiated Successfully"
}